home *** CD-ROM | disk | FTP | other *** search
/ Aminet 6 / Aminet 6 - June 1995.iso / Aminet / gfx / 3d / irit50src.lha / irit5 / irit / overload.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-17  |  786 b   |  23 lines

  1. /*****************************************************************************
  2. *   "Irit" - the 3d (not only polygonal) solid modeller.             *
  3. *                                         *
  4. * Written by:  Gershon Elber                Ver 0.2, Mar. 1990   *
  5. ******************************************************************************
  6. * General, visible to others, definitions of OverLoad.c module.             *
  7. *****************************************************************************/
  8.  
  9. #ifndef    OVERLOAD_H
  10. #define    OVERLOAD_H
  11.  
  12. int OverLoadTypeCheck(int Operator,
  13.               IritExprType Right,
  14.               IritExprType Left,
  15.               IritExprType *Result);
  16. ParseTree *OverLoadEvalOper(ParseTree *Root,
  17.                 ParseTree *TempR,
  18.                 ParseTree *TempL,
  19.                 InptPrsrEvalErrType *IError,
  20.                 char *CError);
  21.  
  22. #endif    /* OVERLOAD_H */
  23.